home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / PCW_C.ARJ / QPUTDEMO.C < prev    next >
Text File  |  1990-01-30  |  264b  |  12 lines

  1.  
  2.     #include <pcwproto.h>
  3.     void main(void) {
  4.        int rw, cl, cnt = 0;
  5.        vcls();
  6.        for (rw = 0; rw < 16; rw++) {
  7.           for (cl = 0; cl < 16; cl++) {
  8.              qputchar(5+rw,32+cl,BLUE,LIGHTGRAY,cnt++);
  9.           }
  10.        }
  11.     }
  12.